:root {
    /* Farver fra bygningen */
    --ama-red: #b74632;        /* facade */
    --ama-red-dark: #8f3526;
    --ama-sand: #e1d3b5;      /* sandstens-rammer */
    --ama-light: #f4eee8;     /* lys baggrund */
    --ama-grey: #6e6a67;      /* dør/sten */
    --ama-text: #2b2b2b;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--ama-light);
    color: var(--ama-text);
    line-height: 1.5;
  }

  header {
    padding: 0.75rem 2.5rem;
    background: linear-gradient(90deg, var(--ama-red-dark), var(--ama-red));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  nav a {
    margin-left: 1.2rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    position: relative;
  }

  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    background: var(--ama-sand);
    transition: width 0.2s ease;
  }

  nav a:hover {
    color: #fff;
  }

  nav a:hover::after {
    width: 100%;
  }

  main {
    padding: 2.2rem 2.5rem 2.5rem;
  }